home *** CD-ROM | disk | FTP | other *** search
/ Explorers of the New World / Explorers of the New World.iso / pc / exdata.dir / 00735_PICTURES.ls < prev    next >
Encoding:
Text File  |  1995-09-10  |  598 b   |  20 lines

  1. on showTopicPicture
  2.   global textSprite, clickedTopic, PictureSprite, pictureH, pictureV
  3.   set pictureCast to the number of cast (clickedTopic && "PICTURE")
  4.   if pictureCast = -1 then
  5.     exit
  6.   end if
  7.   set the castNum of sprite textSprite to the number of cast "Empty Text"
  8.   removeTopicMap()
  9.   set the castNum of sprite PictureSprite to the number of cast pictureCast
  10.   set the locH of sprite PictureSprite to pictureH
  11.   set the locV of sprite PictureSprite to pictureV
  12.   removeMoreButtons()
  13.   updateStage()
  14. end
  15.  
  16. on removeTopicPicture
  17.   global PictureSprite
  18.   removeFromStage(PictureSprite)
  19. end
  20.